home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-30 | 228 b | 20 lines | [TEXT/KAHL] |
- def Ask()
- {
- print("Type something: ");
- x = input();
- println("You typed ",x);
- }
-
- def InfLoop()
- {
- while (1) { print("*"); }
- }
-
- def main()
- {
- inf = thread InfLoop();
- println("Start");
- Ask();
- inf.abort();
- println("\nEnd");
- }